home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Components / CBrowser / Area.h.z / Area.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  332 b   |  24 lines

  1. #ifndef _C_AREA_
  2. #define _C_AREA_
  3.  
  4. #include <Vk/VkComponent.h>
  5.  
  6. class Carea : public VkComponent {
  7.  
  8. public:
  9.  
  10.   Carea(const char *name, Widget parent);
  11.   ~Carea();
  12.  
  13.   virtual const char* className();
  14.  
  15.   Widget getDisplayWidget() { return display; }
  16.   void setLabel(char *str);
  17.  
  18. protected:
  19.  
  20.   Widget label, frame, display;
  21. };
  22.  
  23. #endif
  24.